home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / doschk11.lha / doschk-1.1 / README < prev   
Text File  |  1993-04-16  |  1KB  |  32 lines

  1. doschk - check filenames for DOS (and SYSV) compatibility
  2.  
  3. This program is intended as a utility to help software developers
  4. ensure that their source file names are distinguishable on MS-DOS and
  5. 14-character SYSV platforms.  To perform this task, doschk reads a
  6. list of filenames and produces a report of all the conflicts that
  7. would arise if the files were transferred to a MS-DOS or SYSV
  8. platform.
  9.  
  10. To use this program, you must feed it a list of filenames in this
  11. format:
  12.  
  13.     dir
  14.     dir/file1.ext
  15.     dir/file2.exe
  16.     dir/dir2
  17.     dir/dir2/file3.ext
  18.  
  19. If the list does not include the directory-only lines (like dir/dir2)
  20. then their names will not be checked for uniqueness, else they will
  21. be.  Typical uses of this program are like these:
  22.  
  23.     find . -print | doschk
  24.     tar tf file.tar | doschk
  25.  
  26. If this program produces no output, then all your files are MS-DOS
  27. compatible.  Any output messages are designed to be self-explanatory
  28. and indicate cases where the files will not transfer to MS-DOS without
  29. problems.
  30.  
  31. Please report bugs to bug-gnu-utils@prep.ai.mit.edu. 
  32.